home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 1 / ETO Development Tools 1.iso / Essentials / Developer Essentials Jul 90 / Programming / MPW Interfaces & Libraries 3.1 / PInterfaces / Retrace.p < prev    next >
Encoding:
Text File  |  1989-10-13  |  1.0 KB  |  51 lines  |  [TEXT/MPS ]

  1. {
  2. Created: Tuesday, August 2, 1988 at 10:06 AM
  3.     Retrace.p
  4.     Pascal Interface to the Macintosh Libraries
  5.  
  6.     Copyright Apple Computer, Inc.    1985-1988
  7.     All rights reserved
  8. }
  9.  
  10.  
  11. {$IFC UNDEFINED UsingIncludes}
  12. {$SETC UsingIncludes := 0}
  13. {$ENDC}
  14.  
  15. {$IFC NOT UsingIncludes}
  16.     UNIT Retrace;
  17.     INTERFACE
  18. {$ENDC}
  19.  
  20. {$IFC UNDEFINED UsingRetrace}
  21. {$SETC UsingRetrace := 1}
  22.  
  23. {$I+}
  24. {$SETC RetraceIncludes := UsingIncludes}
  25. {$SETC UsingIncludes := 1}
  26. {$IFC UNDEFINED UsingTypes}
  27. {$I $$Shell(PInterfaces)Types.p}
  28. {$ENDC}
  29. {$IFC UNDEFINED UsingOSUtils}
  30. {$I $$Shell(PInterfaces)OSUtils.p}
  31. {$ENDC}
  32. {$SETC UsingIncludes := RetraceIncludes}
  33.  
  34. {TYPE}
  35.  
  36.  
  37. FUNCTION GetVBLQHdr: QHdrPtr;
  38. FUNCTION SlotVInstall(vblBlockPtr: QElemPtr;theSlot: INTEGER): OSErr;
  39. FUNCTION SlotVRemove(vblBlockPtr: QElemPtr;theSlot: INTEGER): OSErr;
  40. FUNCTION AttachVBL(theSlot: INTEGER): OSErr;
  41. FUNCTION DoVBLTask(theSlot: INTEGER): OSErr;
  42. FUNCTION VInstall(vblTaskPtr: QElemPtr): OSErr;
  43. FUNCTION VRemove(vblTaskPtr: QElemPtr): OSErr;
  44.  
  45. {$ENDC}    { UsingRetrace }
  46.  
  47. {$IFC NOT UsingIncludes}
  48.     END.
  49. {$ENDC}
  50.  
  51.